home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / graphics / mray.arj / MRYDFLT1.INC < prev    next >
Text File  |  1993-07-07  |  763b  |  43 lines

  1. //
  2. //  This is MORAY's default standard include file for POV 1.0.
  3. //  called MRYDFLT1.INC
  4. //
  5. //  It defines a standard scene environment of a grass plane on the 'floor'
  6. //  and a blue sky that gets hazy towards the horizon.
  7. //
  8.  
  9. #include "colors.inc"
  10. #include "textures.inc"
  11. #include "shapes.inc"
  12.  
  13.  
  14. object {
  15.   plane {
  16.   <0.0 0.0 1.0> -0.01
  17.   texture {
  18.     color green 1.0
  19.     ambient 0.4
  20.     diffuse 0.3
  21.     phong 0.2
  22.     phong_size 5
  23.     0.075
  24.   }
  25. }
  26. }
  27.  
  28. object{
  29.   sphere {
  30.     <0 0 0> 1
  31.     texture {
  32.       gradient <0 0 1>
  33.       color_map {
  34.          [0 1 color red 0.9 green 0.9 blue 1.0 
  35.               color red 0.4 green 0.5 blue 1.0 ]
  36.       }
  37.       ambient 1.0
  38.       diffuse 0.0
  39.     }
  40.     scale <1000 1000 1000>
  41.   }
  42. }
  43.